home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-10-26 | 2.0 KB | 100 lines | [TEXT/ScoM] |
- ; A Template for Studies in RHYTHM - solos for a bass instrument
-
- (setq mel1
- (symbol-transform
- from '(a b c d)
- to '(e f g h)
- order '(0 3 2 1)
- changes '(1)
- repeats '(1 2 3)
- )
- )
-
- (setq mel2
- (symbol-transform
- from '(e f g h)
- to '(i j k l)
- order '(3 2 1 0)
- changes '(1)
- repeats '(1 2 3)
- )
- )
-
- (setq mel3
- (symbol-transform
- from '(i j k l)
- to '(a b c d)
- order '(2 1 0 3)
- changes '(1)
- repeats '(1 2 3)
- )
- )
-
- (setq mel4
- (symbol-transform
- from '(m n o p)
- to '(e f g h)
- order '(1 0 3 2)
- changes '(1)
- repeats '(1 2 3)
- )
- )
-
- (setq rhy1 '(1/8 1/16 1/16))
- (setq rhy2 '(-1/16 1/8 1/16))
- (setq rhy1a (gen-loop '((2 3 8) (1 2 4 2)) rhy1))
- (setq rhy2a (gen-loop '((1 3 2) (1 2 8)) rhy2))
- (setq fiborhy (gen-fibonacci 8 rhy1 rhy2))
- (setq len '((1/8 1/16 1/16) (-1/16 1/8 1/16)))
- (setq looprhy (append rhy1a rhy2a))
-
- (setq genrhy1 '1/8)
- (setq genrhy2 '1/16)
-
- ; EITHER - with this basic solo instrument definition
-
- (def-symbol
- bass (append mel1 mel2 mel3 mel4)
- )
-
- (def-expression
- default ((legato 80 19 0.7) (humanize -1 2 0.6) (velocity 30 0.5))
- )
-
- (def-length
- bass rhy1
- )
-
- (setq tonal (activate-tonality (chromatic c 3)))
-
- (compile-song-p "ccl;output:" 1/2 "song"
- ; BARS |---|---|---|---|---|---|---|---|
- bass tonal "--------------------------------"
- )
-
- ; OR - with definitons for bass instrument and a percussion
- ; accompaniment
-
- (setq mels (append mel1 mel2 mel3 mel4))
-
- (def-symbol
- bass mels
- drums (filter-extract '(a c d e f) mels)
- )
-
- (def-expression
- default ((legato 80 19 0.7) (humanize 0 2 0.6) (velocity 30 0.5))
- )
-
- (def-length
- bass rhy1
- drums fiborhy
- )
-
- (setq tonal (activate-tonality (chromatic c 3)))
-
- (compile-song-p "ccl;output:" 1/1 "song"
- ; BARS |---|---|---|---|---|---|---|---|
- bass tonal "--------------------------------"
- drums mt-32 "------------------------------- "
- )